home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000824-20010305 / 000077_news@columbia.edu _Tue Oct 17 12:39:43 2000.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from watsun.cc.columbia.edu (watsun.cc.columbia.edu [128.59.39.2])
  3.     by monire.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id MAA03756
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Tue, 17 Oct 2000 12:39:40 -0400 (EDT)
  5. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  6.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id MAA04774
  7.     for <kermit.misc@watsun.cc.columbia.edu>; Tue, 17 Oct 2000 12:39:38 -0400 (EDT)
  8. Received: (from news@localhost)
  9.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id MAA19924
  10.     for kermit.misc@watsun.cc.columbia.edu; Tue, 17 Oct 2000 12:34:46 -0400 (EDT)
  11. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  12. From: "Steve" <steve@baus-systems.com>
  13. Subject: Re: No Carrier
  14. Message-ID: <zb%G5.34359$Ly1.489095@news5.giganews.com>
  15. Organization: Giganews.Com - Premium News Outsourcing
  16. Date: Tue, 17 Oct 2000 09:31:12 -0700
  17. To: kermit.misc@columbia.edu
  18.  
  19. In our DOS app, we call Server from the command line and Kermit does
  20. terminate when it receives the Finish.  All we would like right now is for
  21. the host in Server mode to not drop the phone line when it receives the
  22. Finish.  I would have thought that there was an AT command or Kermit setting
  23. that would do this.
  24.  
  25. Steve
  26.  
  27. Jeffrey Altman <jaltman@watsun.cc.columbia.edu> wrote in message
  28. news:8sgg7i$hdh$1@newsmaster.cc.columbia.edu...
  29. > In article <3bOG5.57125$bI6.1974759@news1.giganews.com>,
  30. > Steve <steve@baus-systems.com> wrote:
  31. > : Sounds like we need to rethink the plan of attack here...
  32. > :
  33. > : In the short term, is there any easy way around the No Carrier when we
  34. send
  35. > : a Finish from the client?  A setting on the host or a modem
  36. initialization
  37. > : setting on the client?  I cant see where putting multiple servers in the
  38. > : host script is going to work.
  39. > :
  40. > : Thanks,
  41. > : Steve
  42. >
  43. > Steve:
  44. >
  45. > You are sending a FINISH command upon making a connection because the
  46. > MS-DOS Kermit fails to terminate when the prior connection is lost.
  47. > This is not a problem with K95 or C-Kermit.  If you create a loop
  48. > that looks like
  49. >
  50. >   SET CARRIER-WATCH ON
  51. >   SET MODEM TYPE ...
  52. >   SET PORT ...
  53. >   SET FLOW ...
  54. >   WHILE TRUE  {
  55. >     ANSWER 0
  56. >     IF SUCCESS {
  57. >       SERVER      ; This one is terminated by the FINISH
  58. >       SERVER      ; This one is terminated by the connection loss
  59. >     }
  60. >     HANGUP
  61. >   }
  62. >
  63. > you will emulate the behavior of the MS-DOS Kermit SERVER which never
  64. > terminates.
  65. >
  66. >
  67. >
  68. >
  69. >                   Jeffrey Altman * Sr.Software Designer
  70. >                  The Kermit Project * Columbia University
  71. >                612 West 115th St * New York, NY * 10025 * USA
  72. >      http://www.kermit-project.org/ * kermit-support@kermit-project.org
  73.  
  74.